/* Terms of Service Section */
.terms-container {
    width: 100%;
    background: #ffffff;
    padding: 130px 11%;
    text-align: left;
    max-width: 1200px;
    margin: auto;
}

/* Heading Styling */
.terms-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.terms-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 14px;
    max-width: 800px;
    line-height: 1.6;
}

/* Content Styling */
.terms-content {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
}

/* Headings */
.terms-heading {
    font-size: 1.5rem;
    font-weight: bold;
    color: #7B1FA2;
    margin-top: 25px;
}

/* Link Styling */
.terms-content a {
    color: #7B1FA2;
    font-weight: bold;
    text-decoration: none;
}

.terms-content a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .terms-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .terms-title {
        font-size: 2.2rem;
    }

    .terms-intro {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .terms-title {
        font-size: 2rem;
    }

    .terms-intro {
        font-size: 0.9rem;
    }

    .terms-heading {
        font-size: 1.3rem;
    }
}
